home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 July
/
EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso
/
earcd
/
phase5
/
ppcrelease
/
fd2inline
/
makepragmas.awk
< prev
next >
Wrap
Text File
|
1998-02-21
|
559b
|
23 lines
#! /bin/awk -f
#
# makepragmas.awk
#
# Copyright (C) 1996 Kamil Iskra <iskra@student.uci.agh.edu.pl>
# Distributed under terms of GNU General Public License.
#
# This file is part of fd2inline package.
#
# It is used to produce SAS/C compatible "pragmas" files.
#
# Input variables:
# PRAGMAS - basename of "pragma" file to create.
BEGIN {
print "/* Automatically generated header! Do not edit! */"
print
print "#ifndef _INLINE_" toupper(PRAGMAS) "_H"
print "#include <inline/" PRAGMAS ".h>"
print "#endif /* !_INLINE_" toupper(PRAGMAS) "_H */"
exit
}